home *** CD-ROM | disk | FTP | other *** search
/ Directorty Opus 5 - Magellan 2 / Opus 5 - Magellan 2.iso / Extras / GCC_ERROR / Example Makefiles / makefile_texi < prev   
Makefile  |  1997-03-26  |  553b  |  39 lines

  1. #                                                                       230397Emmy
  2. # MakeFile mit GNU für die Doku von pPas
  3. #
  4.  
  5. #
  6. # Set Options
  7. #
  8.  
  9. MAKEINFO = makeinfo 2>>T:MAKE.ERROROUT
  10. OPTS = --amiga-39
  11.  
  12. #
  13. # Global Options
  14. #
  15.  
  16. SHELL = /gnu/bin/sh
  17.  
  18. #
  19. # Hauptsection
  20. #
  21.  
  22. ALL: LangRef.guide
  23.  
  24. ######################
  25. # Rules
  26. ######################
  27.  
  28. %.guide : %.texi
  29.     @echo "Texi-Compiling $< ..."
  30.     @$(MAKEINFO) -o $@ $< $(OPTS)
  31.  
  32. ################################
  33. # Docs
  34. ################################
  35.  
  36. LangRef.guide : langref.texi langref_program.texi
  37.  
  38. # EOF
  39.